home *** CD-ROM | disk | FTP | other *** search
/ PC-SIG: World of Education / PC-SiG's World of Education.iso / run / 2602 / note.hlp < prev    next >
Text File  |  1989-02-03  |  1KB  |  26 lines

  1. NOTE({valuexpr,}xexpr,yexpr);   Put text label and optional value on plot
  2.  
  3. The NOTE procedure causes DAN to output a text string to the graphics
  4. area of a plot.  The text may optionally be followed by a specified
  5. numeric value.  The text is taken from the most recently processed TEXT
  6. statement.  The lower left corner of the first character in the text is
  7. output starting at the coordinates given by 'xexpr' and 'yexpr'.  These
  8. coordinates are given with respect to the current scaling values, hence
  9. the YMIN, YMAX, etc.  values must have been set before the NOTE
  10. statement is executed.
  11.  
  12. A text only message is output if only the x and y coordinates are
  13. specified in the NOTE statement.  That is, if the NOTE statement only
  14. contains two parameters then they are assumed to be x and y
  15. coordinates, and a value is not appended to the text string.
  16. +
  17. If any of the expressions in the statement contains a variable then the
  18. NOTE statement will cause an implicit loop to be executed with multiple
  19. notes being output; one for each step in the implicit loop.  This feature
  20. can be used to label multiple points along a trace or maintain a running
  21. value that is updated as the trace is output.
  22.  
  23. This procedure may be used for annotating graphs with calculated values.
  24. The CONNECT procedure may be used to visually attach a NOTE to a point on
  25. a plot.
  26.